home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Net / Utilities / Seer family 2.0 / docs / unloved files / sc_scope_window.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-08-29  |  397 b   |  17 lines  |  [TEXT/KAHL]

  1. /*
  2.     sc_scope_window.h - data private to scope windows
  3. */
  4.  
  5. struct scope_rec_R {
  6.     cnt_tab_ent *sc_counter;    /*a pointer to the channels counter*/
  7.     uint32 sc_value;            /*last counter value*/
  8. };
  9. typedef struct scope_rec_R scope_rec;
  10.  
  11. #define NUM_SCOPE_CHANS (15)    /*number of display channels*/
  12.  
  13. /*information for osciliscope windows*/
  14. typedef struct {
  15.     scope_rec chans[NUM_SCOPE_CHANS];
  16. } scope_windef;
  17.